home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / vinstall.sql < prev    next >
Text File  |  2000-05-26  |  2KB  |  90 lines

  1. /* RCSVER $Id: vinstall.sql,v 1.5 2000-05-08 16:49:36-05 jwp Exp $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:         vinstall.sql
  6. * Date:         02/15/00
  7. * memo:         Randy Wood
  8. * Description:  Install the views for reports.
  9. * Changes:
  10. ************************************************************************* */
  11. /* ---------------------------------------- */
  12. /* Set the log file and set exit upon error */
  13. /* ---------------------------------------- */
  14. SPOOL C:\TEMP\SQLLOG2.TXT
  15. WHENEVER SQLERROR EXIT 11 ROLLBACK
  16.     /* Level 0 - No dependencies */
  17. @vbatchadjust
  18. @vbillcoins
  19. @vbilljam
  20. @vbusfboxgar
  21. @vcbadjust
  22. @vckcashbox
  23. @vckprobehist
  24. @vcuraccparts
  25. @vcurstaterange
  26. @vdailyriders
  27. @vdayadjust
  28. @veventslist
  29. @veventspart1
  30. @veventspart2
  31. @veventspart3
  32. @veventspart4
  33. @veventspart5
  34. @vfberror
  35. @vjamsLoc1
  36. @vjamssummary
  37. @vlastprobe
  38. @vmagsales
  39. @vmonthlyriders
  40. @vmrreconcile
  41. @vprobedates
  42. @vprobes
  43. @vrpt4headers
  44. @vrptfaremaps
  45. @vshiftmoney
  46. @vsurvey
  47. @vtokctcashclose
  48. @vtokctprorphans
  49. @vtrips
  50. @vtripsgrps
  51.  
  52.     /* Level 1 - Dependencies Level 0 */
  53. @vallevents
  54. @vbcsummary
  55. @vbusNotProbed
  56. @vcbcount
  57. @vclosing
  58. @vcscurdetail
  59. @vcuraccDetail
  60. @vjamsloc
  61. @vjamsLoc1a
  62. @vopenitems
  63. @vprevinsert
  64. @vprobing
  65. @vsumcscurcnt
  66. @vsumcuracc
  67. @vsurveyAA
  68. @vsurveyaa_rr
  69.  
  70.     /* Level 2 - Dependencies Level 1 */
  71. @vbpmoney
  72. @vbpmoneydet
  73. @vbusprobedetail
  74. @vvbpmoneydet
  75.  
  76.     /* Level 3 - Dependencies Level 2 */
  77. @vbusprobe50
  78. @vbusprobe5x
  79. @vvbusprobedetail
  80.  
  81.     /* Level 4 - Dependencies Level 3 */
  82. @vcboxcycle
  83. /* ------------------ */
  84. /* Close the log file */
  85. /* ------------------ */
  86. SPOOL OFF
  87. COMMIT;
  88. EXIT;
  89.  
  90.